home *** CD-ROM | disk | FTP | other *** search
/ PC Users 1998 March / Pc Users extra 6.iso / pshare95 / prog / pvie / pview.exe / data.1 / winxdef.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-10-10  |  2.3 KB  |  85 lines

  1. {$C MOVEABLE,DEMANDLOAD,DISCARDABLE}
  2.  
  3. {*******************************************************}
  4. {                                                       }
  5. {       For PICS OCX version 1.5                        }
  6. {       API Interface Unit                              }
  7. {                                                       }
  8. {  Copyright (c) 1996 ProtoView Development Co.         }
  9. {                All rights reserved                    }
  10. {*******************************************************}
  11.  
  12. unit PICSOCX;
  13.  
  14. interface
  15.  
  16. const
  17. { Defines of constants for Add Method - TreeView }
  18.     pvtPositionInOrder = 0;
  19.   pvtPositionBefore  = 1;
  20.   pvtPositionAfter   = 2;
  21.  
  22. { Defines of constants for Get Method - TreeView }
  23.   pvtGetNextSibling  = 0;
  24.   pvtGetPrevSibling  = 1;
  25.   pvtGetNextVisible  = 2;
  26.   pvtGetPrevVisible  = 3;
  27.   pvtGetNextSelected = 4;
  28.   pvtGetPrevSelected = 5;
  29.   pvtGetParent       = 6;
  30.   pvtGetNext         = 7;
  31.   pvtGetPrevious     = 8;
  32.   pvtGetChild        = 9;
  33.  
  34. { Defines of constants for Open Method - TreeView }
  35.   pvtEnsureVisible   = 0;
  36.   pvtNode            = 1;
  37.   pvtChildren        = 2;
  38.   pvtAllChildren     = 3;
  39.   pvtUnselect        = 4;
  40.   pvtAnchor          = 5;
  41.   pvtCaret           = 6;
  42.  
  43. { Defines of constants for Standard Pictures - TreeView }
  44.   pvtNone                = -1;
  45.   pvtpicFolders          = 0;
  46.   pvtpicBoxes1           = 1;
  47.   pvtpicDocument         = 2;
  48.   pvtpicHardDisk         = 3;
  49.   pvtpicProgram          = 4;
  50.   pvtpicSystemFile       = 5;
  51.   pvtpicBoxes2           = 6;
  52.   pvtpicBoxes3           = 7;
  53.   pvtpicASCIIFile        = 8;
  54.   pvtpicHelpFile         = 9;
  55.  
  56. { Defines of constants for Find Method - TreeView }
  57.   pvtFindNext                     = 0;
  58.   pvtFindNextExact            = 1;
  59.   pvtFindPrevious             = 2;
  60.   pvtFindPreviousExact        = 3;
  61.   pvtFindNextSibling          = 4;
  62.   pvtFindNextSiblingExact     = 5;
  63.   pvtFindPreviousSibling      = 6;
  64.   pvtFindPreviousSiblingExact = 7;
  65.   pvtFindNextVisible          = 8;
  66.   pvtFindNextVisibleExact     = 9;
  67.   pvtFindPreviousVisible      = 10;
  68.   pvtFindPreviousVisibleExact = 11;
  69.  
  70.  
  71. { Defines of constant for DateFormat Property - DateEdit }
  72.   fmtMDY        = 0;
  73.   fmtDMY        = 1;
  74.   fmtYMD        = 2;
  75.  
  76. { Common defines for DateEdit & Numeric Edit Control }
  77.   fmtNORMAL      = 12;
  78.   fmtLED          = 13;
  79.   fmtODOMETER    = 14;
  80.  
  81. implementation
  82.  
  83. end.
  84.  
  85.